home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-03-20 | 572 b | 17 lines | [TEXT/MMCC] |
-
- // The following two typedef's are to work around a bug in the ETO #15
- // Universal headers -- the headers only typedef float_t and double_t
- // for "applec" and "powerc". When this is eventually fixed, these
- // lines generate "redefined type" errors.
-
- #ifndef powerc
- typedef long double float_t;
- typedef long double double_t;
-
- // The following is required if using Metrowerks 68K (CW4).
- // Otherwise, MetroWerks 68K expects (and uses what it thinks are)
- // A0 result values instead of D0 ones.
-
- #pragma pointers_in_D0 // Required for c-style toolbox glue.
- #endif
-